message = Map();
key = options.get("key");
msg = options.get("msg");
decryptmsg = "";
if(key == null)
{
	message.put("text","Oops! You forgot to mention the key to reveal the message.");
	return message;
}
if(msg == null)
{
	msg = "" + arguments;
}
if(msg.length() > 0)
{
	msg = msg.trim();
	decryptmsg = zoho.encryption.aesDecode(key,msg);
	message.put("text",decryptmsg);
}
else
{
	message.put("text","Wups! Looks like you forgot to mention the masked message you wish to reveal");
}
return message;